home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
database
/
do1beta
/
inherit.do
< prev
next >
Wrap
Text File
|
1991-07-23
|
303b
|
14 lines
/*
demonstrate inheritance of a base class
*/
inherit(Int,Myint,[]);
/*
demo
*/
v = new(Myint,1);
? "v is ",v; % inherit the asString method from Int
? "v + 1 = ",v+1; % inherit the + operator from Int
? "v - 1 = ",v-1; % inherit the - operator from Int
? "parent of v is ",parent(v);